home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / tcplusx.zip / USETYPES.H < prev   
C/C++ Source or Header  |  1991-03-02  |  1KB  |  43 lines

  1. #ifndef __USETYPES_H
  2. #define __USETYPES_H
  3.  
  4. //
  5. // usetypes.h    - header file for class types designed by me
  6. // Author        - Robin W. McKean
  7. // Last Update    - February 19,1991
  8. // Copyright (C) 1991 All rights reserved
  9. //
  10. // This file remains the property of the author, Robin W. McKean.  You are
  11. // free to use and change it as you see fit.  This module, nor its object
  12. // code, may not however be included  in any packaged software without the
  13. // written consent of the author.
  14. //
  15.  
  16. // Contents ----------------------------------------------------------------
  17. //
  18. //    eventClass
  19. //
  20. // Description
  21. //
  22. //        Defines types for the class library.
  23. //
  24. // End ---------------------------------------------------------------------
  25.  
  26. // Interface dependencies --------------------------------------------------
  27.  
  28. #ifndef _CLSTYPES_H
  29. #include <clstypes.h>
  30. #endif
  31.  
  32. // End Interface dependencies ----------------------------------------------
  33.  
  34. #define     eventClass            ( __firstUserClass + 0 )
  35. #define     deviceClass         ( eventClass + 1 )
  36. #define     cursorClass         ( deviceClass + 1 )
  37. #define     keyboardClass        ( cursorClass + 1 )
  38. #define     mouseClass            ( keyboardClass + 1 )
  39. #define     eventManagerClass    ( mouseClass + 1 )
  40. #define     displayClass        ( eventManagerClass + 1 )
  41.  
  42. #endif
  43.